[XM] Add missing parameter to XM XMLRPC call so that we get the
authorAlastair Tse <atse@xensource.com>
Thu, 5 Oct 2006 17:22:13 +0000 (18:22 +0100)
committerAlastair Tse <atse@xensource.com>
Thu, 5 Oct 2006 17:22:13 +0000 (18:22 +0100)
devices in xm list --long

Signed-off-by: Alastair Tse <atse@xensource.com>
tools/python/xen/xm/main.py

index 6827eae0430e9146699e22b78546a82fa4e80598..b14afcc8cca7c8c83d76b31680a42de74bdeae33 100644 (file)
@@ -485,7 +485,7 @@ def getDomains(domain_names, full = 0):
     if domain_names:
         return [server.xend.domain(dom, full) for dom in domain_names]
     else:
-        return server.xend.domains(1)
+        return server.xend.domains(1, full)
 
 
 def xm_list(args):